home *** CD-ROM | disk | FTP | other *** search
/ Visual Cafe 3 / Visual Cafe 3.ISO / Vcafe / Main.bin / ZIPValidator.java < prev   
Text File  |  1998-09-08  |  555b  |  33 lines

  1. package com.symantec.itools.tools.archive;
  2.  
  3.  
  4. /**
  5.  * @author Symantec Internet Tools Division
  6.  * @version 1.0
  7.  * @since VCafe 3.0
  8.  */
  9.  
  10. public class ZIPValidator
  11.     extends TypeValidator
  12. {
  13.  
  14.     /**
  15.      * @since VCafe 3.0
  16.      */
  17.     protected Options options;
  18.     
  19.     public ZIPValidator(Options options)
  20.     {
  21.         super(options);
  22.     }
  23.  
  24.     /**
  25.      * @param errorMsg TODO
  26.      * @since VCafe 3.0
  27.      */
  28.     
  29.     public boolean validate(StringBuffer errorMsg)
  30.     {
  31.         return (validate(true, errorMsg));
  32.     }
  33. }